home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_automountd.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  88 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10212);
  10.  script_bugtraq_id(235, 614);
  11.  script_version ("$Revision: 1.14 $");
  12.  script_cve_id("CVE-1999-0210", "CVE-1999-0704");
  13.  name["english"] = "automountd service";
  14.  name["francais"] = "Service automountd";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. The automountd service is running.
  19.  
  20. There is a bug in the Solaris rpc.statd
  21. and automountd which allow an attacker
  22. to execute any command remotely as root.
  23.  
  24. *** THIS VULNERABILITY WAS NOT TESTED 
  25. *** AND MAY BE A FALSE POSITIVE
  26.  
  27. Solution : Disable your automountd and ask your
  28. vendor if you are vulnerable.
  29.  
  30. Risk factor : High";
  31.  
  32.  
  33.  desc["francais"] = "
  34. Le service automountd tourne.
  35.  
  36. Il y a un bug dans la version Solaris de
  37. rpc.statd et automountd qui permet α un
  38. pirate de passer root sur le systΦme
  39. distant.
  40.  
  41. *** CETTE VULNERABILITE N'A PAS ETE TESTEE
  42. *** ET PEUT ETRE UNE FAUSSE ALERTE
  43.    
  44. Solution : DΘsactivez votre automountd
  45. et demandez α votre vendeur si vous etes
  46. vulnerables
  47.  
  48. Facteur de risque : ElevΘ";
  49.  
  50.  script_description(english:desc["english"], francais:desc["francais"]);
  51.  
  52.  summary["english"] = "Checks the presence of a RPC service";
  53.  summary["francais"] = "VΘrifie la prΘsence d'un service RPC";
  54.  script_summary(english:summary["english"], francais:summary["francais"]);
  55.  
  56.  script_category(ACT_GATHER_INFO);
  57.  
  58.  
  59.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  60.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  61.  family["english"] = "RPC"; 
  62.  family["francais"] = "RPC";
  63.  script_family(english:family["english"], francais:family["francais"]);
  64.  script_dependencie("rpc_portmap.nasl");
  65.  script_require_keys("rpc/portmap");
  66.  exit(0);
  67. }
  68.  
  69. #
  70. # The script code starts here
  71. #
  72.  
  73. include("misc_func.inc");
  74.  
  75. RPC_PROG = 100099;
  76. tcp = 0;
  77. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  78. if(!port){
  79.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  80.     tcp = 1;
  81.     }
  82.  
  83. if(port)
  84. {
  85.  if(tcp)security_warning(port);
  86.  else security_warning(port, protocol:"udp");
  87. }
  88.